From: Luc Teirlinck Date: Thu, 5 Feb 2004 04:16:49 +0000 (+0000) Subject: (Fchar_after, Fchar_before): Doc fixes. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~24257 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9692a861a3e7793837d82fd34c8452ab194b65f9;p=emacs.git (Fchar_after, Fchar_before): Doc fixes. --- diff --git a/src/editfns.c b/src/editfns.c index d3039ca0273..9a1ce81f316 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -1138,7 +1138,7 @@ DEFUN ("eolp", Feolp, Seolp, 0, 0, 0, DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0, doc: /* Return character in current buffer at position POS. -POS is an integer or a marker. +POS is an integer or a marker and defaults to point. If POS is out of range, the value is nil. */) (pos) Lisp_Object pos; @@ -1171,7 +1171,7 @@ If POS is out of range, the value is nil. */) DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0, doc: /* Return character in current buffer preceding position POS. -POS is an integer or a marker. +POS is an integer or a marker and defaults to point. If POS is out of range, the value is nil. */) (pos) Lisp_Object pos;